home *** CD-ROM | disk | FTP | other *** search
/ Designer's Club 1998 April / Designer's Club 1998 April.iso / pc / Ideasrc / PROTECT.DIR / 00019_Script_last frame delay < prev    next >
Text File  |  1998-03-13  |  480b  |  29 lines

  1. on exitFrame
  2.   
  3.   repeat with n=9 to 13
  4.     if rollover(n) then
  5.       set the visible of sprite n to false
  6.       updatestage
  7.     end if
  8.   end repeat
  9.   
  10.   repeat with n=9 to 13
  11.     if not rollover(n) then
  12.       set the visible of sprite n to true
  13.       updatestage
  14.     end if
  15.   end repeat
  16.   
  17.   if soundbusy(1) then 
  18.     go the frame
  19.   else
  20.     startTimer
  21.     repeat while the timer < 60
  22.       nothing
  23.     end repeat
  24.     go movie "main"
  25.   end if
  26.   
  27. end
  28.  
  29.